home *** CD-ROM | disk | FTP | other *** search
- #
- # MAKE file for DEMO.EXE: Serial Number Demo Program (SMALL model)
- #
- # For use with Microsoft MAKE and Microsoft MASM 5.1 and Microsoft C 5.1.
- #
- # MODEL may be SMALL, COMPACT, MEDIUM, or LARGE.
-
- serno.obj : serno.asm
- masm /Ml /DMODEL=SMALL serno;
-
- demo.obj : demo.c
- cl demo.c /c
-
- demo.exe : demo.obj serno.obj
- link demo serno;
-